home *** CD-ROM | disk | FTP | other *** search
/ Day Cry / Day Cry CD.bin / oh_towns / ugoku / src.lzh / MOVRLF / GRATIF.H < prev    next >
Text File  |  1994-09-10  |  851b  |  25 lines

  1. /* error num. */
  2. #define    OUT_OF_MEMORY        7
  3. #define    ILLEGAL_FILENAME    55
  4. #define    ILLEGAL_DATA        58
  5. #define    CANT_LOAD            1
  6. #define    READ_FAIL            1
  7. #define    CANT_SAVE            2
  8. #define    WRITE_FAIL            2
  9.  
  10. /* for tif load */
  11. #define LOADBUFSIZE     (151*1024)    /* âtâ@âCâïô╟é▌ì₧é▌âoâbâtâ@ */
  12. #define EXPBUFSIZE   (100*1024)    /* ôWèJùpâoâbâtâ@ */
  13. /* for tif save */
  14. #define SAVEBUFSIZE     (151*1024)    /* âtâ@âCâïô╟é▌ì₧é▌âoâbâtâ@ */
  15. #define GETBUFSIZE   (100*1024)    /* ôWèJùpâoâbâtâ@ */
  16.  
  17. /* è╓Éöé╠ÆΦï` */
  18. extern int tifLoad16m( char *, char *, char *, int *, int * ) ;
  19. extern int cov16mTo32k( char *sour, char *dest, int n ) ;
  20. extern int tiffCheckHead( char *name, int *c, int *x, int *y,
  21.                           int *comp, int *fill, long *strip, long *clut ) ;
  22. extern int tifSave32kAnd16m( char *work, char *name, char *buffer,
  23.                             int bpp, int comp, int x, int y ) ;
  24.  
  25.